Makefile refactor to use the Makes makefile system #75
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
See: https://github.com/makeplus/makes
With this setup, one not need to have Go or Clojure installed.
The Makefile takes care of everything.
You can easily override Go and Clojure versions with
GO-VERSIONandCLOJURE-VERSIONmake variables:Makefile autoinstalls the
makesrepo, Go and Clojure deps under.cache/.Adds support for:
Inside shell after
make build,gljwill be in PATH.We lock the makeplus/makes repo to commit
ca8c2c25e66cf6bfcf8c993502de5b98da5beaf5 to be make sure everyone gets
the same results forever.
Updates Makefile variables to use
-instead of_.Variables with
_can come from the environment.With
-they are only recognized by make.You can override in the shell with
make something FOO-BAR=123..PHONYis only needed when phony targets have matching file systemnames.
testis the only one here.